home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-02-10 | 3.9 KB | 73 lines | [TEXT/MPS ] |
- **********************************************************************
- FORTRAN Goodies - A selection of files from the Language Systems BBS.
- **********************************************************************
-
- Asin.txt 8/27/90 Simple XFCN in FORTRAN
- This arcsin XFCN can be called from a HyperCard stack for faster calculation than is
- possible with HyperTalk.
-
- CallAd.txt 11/3/92 Calling by Address
- An example of how to call a routine by finding the address of any routine, passing the
- address to a dispatch routine and calling the original routine using the passed address.
-
- ChangeFilename.txt 11/19/90 Script to change file name extensions
- Changes the file name extension of all files in the current directory. Takes 2 arguments, the
- old and the new extensions. Example: changefilenames for f
-
- DynArray.txt 11/3/92 Dynamic allocation of Arrays
- This is an example of how to dynamically allocate an array using FORTRAN and toolbox calls.
-
- FORTRAN Macros for EXCEL 01/31/92 Excel Macros calling FORTRAN resources
- Source code and corresponding resources for Excel macros that illustrate using each of the
- Excel Data Types in FORTRAN code resources. In general these macros are useful only as
- examples to create your own macros and code resources.
-
- FORTRAN Speaks 7/31/90 Make FORTRAN talk back!
- Make your FORTRAN program talk back to you. Demonstrates calling the MacInTalk speech
- driver from FORTRAN. **DOES NOT INCLUDE MACINTALK ITSELF**
-
- Launch Library 12/03/91 A library call for launching applications
- This includes a library and a sample program to call the library. It launches applications
- under both Systems 6 and 7. The source code is more recent than the compiled version.
-
- MenuTrix.txt 1/17/91 How to customize output window menus.
- This example shows how to add styled text and command key equivalents.
-
- NewRes.txt 11/3/92 Resource Editing with FORTRAN
- An example of how to use Toolbox calls to create, write to, and read from the resource fork
- of a file. ResEdit or some sort of resource editor may be useful for viewing the file you
- create.
-
- Path.txt 8/15/91 Finds the full path name of a file.
- This example uses the System 7 call FSMakeFSSpec to determine the full source path of the
- chosen file. This code only runs under System 7 and requires the latest includes and inlines
- files.
-
- PcallsF 12/7/90 An Example of MPW Pascal calling FORTRAN
- Sample program showing the different ways Pascal can call FORTRAN subroutines and
- functions. This example also shows how to access a FORTRAN static COMMON from within a
- Pascal routine.
-
- QuickTime.SEA 11/3/92 Preliminary QuickTime Interface Files
- New interface files that include definitions for Quicktime Toolbox calls. Also included are
- updated RawInlines with Quicktime traps defined. This file is a self-extracting archive.
-
- ReadAllFiles.txt 11/19/90 Make an array of all files in a folder
- Use File=* to let the user select a file in the target folder, then make an array of all file
- names in that folder. You can easily add filtering to select a subset of the files.
-
- SetVol.txt 01/31/92 Manipulating directories within a FORTRAN program
- SetVolume.f is an example of how to use SetVolume and other Language System functions
- to manipulate which folder data files are written to.
-
- Stack.txt 01/07/92 How to change your applications stack size
- This program demonstrates how a FORTRAN program can enlarge its own stack. Three
- toolbox calls are used: StackSpace, GetApplLimit, and SetApplLimit.
-
- String Utilities 12/7/90 Routines for manipulating strings.
- A collection of files that will let you do interesting things with strings.
-
- WindowTrix.txt 11/19/90 Various neat tricks with the window
- This example program show how you can 1) save the text in the output window to a
- prenamed file, 2) find out how many characters are highlighted in the window, and 3) save
- the highlighted text.